From 10298abc507f6604c58be26454f57bf83683ea30 Mon Sep 17 00:00:00 2001 From: justbur Date: Mon, 13 Jul 2015 07:54:16 -0400 Subject: [PATCH] Fix a message --- which-key.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/which-key.el b/which-key.el index e66e789379a..9e7fa890ff2 100644 --- a/which-key.el +++ b/which-key.el @@ -272,7 +272,8 @@ bottom." (when (or (not (stringp key)) (not (stringp repl))) (error "KEY and REPL should be strings")) (when (assoc-string key alist) - (message "which-key note: The key %s already exists in %s. This addition will override that replacement.")) + (message "which-key note: The key %s already exists in %s. This addition will override that replacement." + key alist)) (setq alist (push (cons key repl) alist)) alist) -- 2.30.2